home *** CD-ROM | disk | FTP | other *** search
/ Best of www.BestZips.com (Collector's Edition) / Best of WWW.BESTZIPS.COM Collector's Edition (JCSM Shareware) (JCS Marketing).ISO / editors_ / ze16v250.zip / EXAMPLES.TX_ / EXAMPLES.TX
Text File  |  1996-12-29  |  6KB  |  158 lines

  1.   Zeus Example Information
  2.   ========================
  3.  
  4.   Zeus comes with several examples programs, files and batch files. These
  5.   examples show how it is possible to enhance the functionality of Zeus
  6.   using third party programs, data files and batch files.
  7.   
  8.   Below is information regarding all the example provided and details on 
  9.   how to uses these files. All of these files are copied from the install 
  10.   disk and are located in the Zeus zExample directory.
  11.  
  12.   
  13.   Zeus File Extension Keywords
  14.   ----------------------------
  15.   Zeus provides default keyword definitions for several languages. To
  16.   import these files just create a new file extension using the Options
  17.   Extensions dialog, then use the 'Import' button and select the required
  18.   keyword import file from the list provided. The following is a list of 
  19.   keywords that have been predefined defined and are ready for importing.
  20.   
  21.      ASM.TXT      -  8086 ASM import file
  22.      ADA95.TXT    -  Ada 95 import file
  23.      BAT.TXT      -  BATCH import file
  24.      C-CPP.TXT    -  C/C++ import file
  25.      CLIPPER.TXT  -  Clipper import file
  26.      CICODE.TXT   -  CI Code import file
  27.      COBOL.TXT    -  Cobol import file
  28.      DBASE.TXT    -  dBase import file
  29.      FORTRAN.TXT  -  Fortran import file
  30.      JAVA.TXT     -  Java import file
  31.      HTML.TXT     -  HTML import file
  32.      PAS.TXT      -  Pascal import file
  33.      PERL.TXT     -  Perl import file
  34.      REXX.TXT     -  REXX import file
  35.      SQL.TXT      -  SQL import file
  36.      TEX.TXT      -  LaTex import file
  37.      VHDL.TXT     -  VHDL import file
  38.   
  39.   If you find any of these keyword files are wrong, or missing keywords 
  40.   please let me know as there are certain to be some errors or omissions.
  41.  
  42.   
  43.   CC.BAT: Example of an External Compile Batch File
  44.   -------------------------------------------------
  45.   Zeus will run most compilers, linkers and makers without problems, but in 
  46.   some cases you may need to use an external batch file. The CC.BAT file is 
  47.   an example of how to configure Zeus to run the compile using an external 
  48.   batch file. To use the CC.BAT file just enter CC.BAT into the Run file
  49.   field of the Options Compiler dialog, making sure you have checked the 
  50.   'Use other file' checkbox option first. Then just compile any file using 
  51.   the Compiler Compile menu option to see the results.
  52.  
  53.   
  54.   CTAGS: C/C++ Tag Example Tool
  55.   -----------------------------
  56.   The CTAGS.EXE is a simple tool designed to find all C/C++ functions,
  57.   variables and definitions. For more information refer to the CTAGS.C
  58.   file located in the zExample directory.
  59.   
  60.   To run this tool use and DOS command line, use the Zeus Tools
  61.   Command Line menu option and run the command from the Zeus command
  62.   line, or select the tool from the installed tool list of the Zeus
  63.   Tools menu.
  64.   
  65.   To make this application you will need MSVC Version 1.5 or
  66.   better or BC++ Version 4.5 or better. Just load the appropriate
  67.   make or project file and build the application.
  68.   
  69.   The CTAGS example is made up of the following files:
  70.   
  71.      CTAGS.MAK   -  MSVC V1.5 project make file
  72.      CTAGS.IDE   -  BCC 4.5 project make file
  73.      CTAGS.EXE   -  CTAGS executable
  74.      CTAGS.C     -  Main source file
  75.      WILDCARD.C  -  Wildcard processing source file
  76.      CTYPE.C     -  C types source file
  77.      CTYPE.H     -  C types header file
  78.      CONFIG.H    -  Configuration header file
  79.   
  80.   The CTAGS.EXE takes the following command line arguments:
  81.   
  82.      Usage: CTAG [flags] filenames...
  83.          -s  include static functions
  84.          -t  include typedefs
  85.          -v  include variable declarations
  86.          -r  generate a "refs" file, too
  87.          -a  append to "tags", instead of overwriting
  88.         
  89.   Examples: CTAGS.EXE -s ctag.c
  90.             CTAGS.EXE -s -t -v *.c
  91.   
  92.  
  93.   CINC: C/C++ Include Example Tool
  94.   --------------------------------
  95.   The CINC.EXE is a tool designed to scan the given C/C++
  96.   for include files. The results of the scan can be displayed
  97.   as a formatted tree output or as just a simple line output. 
  98.   The utility will also scan system include files if asked to
  99.   do so.
  100.   
  101.   The CINC example consists of the following file:
  102.   
  103.      CINC.MAK  -  MSVC V1.5 project make file
  104.      CINC.IDE  -  BCC 4.5 project make file
  105.      CINC.EXE  -  CINC executable
  106.      CINC.CPP  -  Main source file
  107.   
  108.   To run this tool use and DOS command line, use the Zeus Tools
  109.   Command Line menu option and run the command from the Zeus command
  110.   line, or select the tool from the installed tool list of the Zeus
  111.   Tools menu.
  112.   
  113.   To make the application you will need MSVC Version 1.5 or
  114.   better or BC++ Version 4.5 or better. Just load the appropriate
  115.   make or project file and build the application.
  116.   
  117.   The CINC.EXE takes the following command line arguments:
  118.   
  119.      Usage: CINC [flags] filename
  120.          -s  search system include files also
  121.          -f  format the display output
  122.      
  123.   Example: CINC.EXE -f cinc.c
  124.  
  125.   
  126.   FGREP: File GREP  Example Tool
  127.   ------------------------------
  128.   The FGREP.EXE is a simple GREP utility that can be used for 
  129.   scanning files for text strings.
  130.   
  131.   The FGREP example consists of the following file:
  132.   
  133.      FGREP.IDE  -  BCC 4.5 project make file
  134.      FGREP.EXE  -  FGREP executable
  135.      FGREP.C    -  Main source file
  136.   
  137.   To run this tool use and DOS command line, use the Zeus Tools
  138.   Command Line menu option and run the command from the Zeus command
  139.   line.
  140.   
  141.   To make the application you will need MSVC Version 1.5 or
  142.   better or BC++ Version 4.5 or better. Just load the appropriate
  143.   make or project file and build the application.
  144.   
  145.   For more information on using FGREP run FGREP.EXE -?  
  146.    
  147.   Example: FGREP.EXE -n Example *.txt
  148.  
  149.  
  150.  
  151.  
  152.  
  153.  
  154.  
  155.  
  156.  
  157.  
  158.